home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / PRUS101.ZIP / EXAMPLE.USE < prev    next >
Text File  |  1994-07-20  |  1KB  |  42 lines

  1. { File EXAMPLE.USE - example file to assure proper usage of the project's
  2.                      interdependend units }
  3.  
  4.  (***************************************************************************
  5.  
  6.            RELEASE 1.00ß - as contained in the file PRUS1xxY.zzz
  7.                 by Orazio Czerwenka, 2:2450/540.55, GERMANY
  8.  
  9.                --------------------------------------------
  10.                 organized for Fido's PASCAL related echoes    
  11.                --------------------------------------------
  12.  
  13.      07/15/1994 to --/--/---- by Orazio Czerwenka, 2:2450/540.55, GERMANY
  14.  
  15.  ***************************************************************************)
  16.  
  17.  {
  18.    The following is a simple example to show how to assure the appropriate
  19.    order of using the units contained in the PRUSSG releases.
  20.  }
  21.  
  22. USES
  23.   ...,
  24.   FCRT,
  25.   FKBD,
  26.   FSPEAKER,
  27.   FTMODE
  28. {$IFDEF ver70}
  29.   ,FDPMI
  30. {$ENDIF}
  31.   ...;
  32.  
  33.  {
  34.    This file is a last minute add on to the files included in the project's
  35.    first main release 1.00.
  36.  
  37.    In some of the documentation files for the project's different units
  38.    the appropriate way of how to 'link' these units has already been
  39.    described. But for one 'doesn't always remember everything' I decided
  40.    to make this small example file to add it to the file packet for quick
  41.    referrence in cases of doubt.
  42.  }